home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 4 / United Public Domain Gold 4.iso / fredfish / ff.0164.dms / ff.0164.adf / C-Functions / strupp.c < prev    next >
C/C++ Source or Header  |  1988-11-22  |  190b  |  11 lines

  1.  
  2. #include <exec/types.h>
  3.  
  4. VOID strupp(pc)     /* Make a string upper case only */
  5. UBYTE *pc;
  6.    {
  7. register int i=0;
  8.    while (pc[i] = upper(pc[i])) i++;    /* Do untill /0 is found */
  9.    }
  10.  
  11.